Clover coverage report - Enterprise Web Services - 1.0
Coverage timestamp: Mon May 30 2005 17:10:32 CEST
file stats: LOC: 52   Methods: 1
NCLOC: 30   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
WSCFWebserviceDescriptionImpl.java 66.7% 80% 100% 77.3%
coverage coverage
 1   
 /*
 2   
  * Copyright 2001-2004 The Apache Software Foundation.
 3   
  * 
 4   
  * Licensed under the Apache License, Version 2.0 (the "License");
 5   
  * you may not use this file except in compliance with the License.
 6   
  * You may obtain a copy of the License at
 7   
  * 
 8   
  *      http://www.apache.org/licenses/LICENSE-2.0
 9   
  * 
 10   
  * Unless required by applicable law or agreed to in writing, software
 11   
  * distributed under the License is distributed on an "AS IS" BASIS,
 12   
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13   
  * See the License for the specific language governing permissions and
 14   
  * limitations under the License.
 15   
  */
 16   
 package org.apache.geronimo.ews.ws4j2ee.context.webservices.server.xmlbeans;
 17   
 
 18   
 import com.sun.java.xml.ns.j2Ee.IconType;
 19   
 import com.sun.java.xml.ns.j2Ee.PortComponentType;
 20   
 import org.apache.geronimo.ews.ws4j2ee.context.webservices.server.AbstractWSCFWebserviceDescription;
 21   
 import org.apache.geronimo.ews.ws4j2ee.context.webservices.server.WSCFException;
 22   
 import org.apache.geronimo.ews.ws4j2ee.context.webservices.server.interfaces.WSCFPortComponent;
 23   
 import org.apache.geronimo.ews.ws4j2ee.context.webservices.server.interfaces.WSCFWebserviceDescription;
 24   
 
 25   
 /**
 26   
  * This represents a level 1 element in the Element tree :webservice-description. This is the concrete implementation of the
 27   
  * WSCFWebServiceDescription interface
 28   
  */
 29   
 public class WSCFWebserviceDescriptionImpl extends AbstractWSCFWebserviceDescription implements WSCFWebserviceDescription {
 30  13
     public WSCFWebserviceDescriptionImpl(com.sun.java.xml.ns.j2Ee.WebserviceDescriptionType wsdes) throws WSCFException {
 31  13
         this.description = XMLBeansUtils.getStringValue(wsdes.getDescription());
 32  13
         this.displayName = XMLBeansUtils.getStringValue(wsdes.getDisplayName());
 33  13
         IconType icon = wsdes.getIcon();
 34  13
         if (icon != null) {
 35  0
             this.smallIcon = XMLBeansUtils.getStringValue(icon.getSmallIcon());
 36  0
             this.largeIcon = XMLBeansUtils.getStringValue(icon.getLargeIcon());
 37   
         }
 38  13
         this.webserviceDescriptionName = XMLBeansUtils.getStringValue(wsdes.getWebserviceDescriptionName());
 39  13
         this.wsdlFile = XMLBeansUtils.getStringValue(wsdes.getWsdlFile());
 40  13
         this.jaxrpcMappingFile = XMLBeansUtils.getStringValue(wsdes.getJaxrpcMappingFile());
 41   
         ;
 42  13
         PortComponentType[] list = wsdes.getPortComponentArray();
 43  13
         if (0 == list.length) {
 44  0
             throw new WSCFException("At least one port-component element should exist in the " + this.description + " webservices element.");
 45   
         }
 46  13
         for (int i = 0; i < list.length; i++) {
 47  13
             WSCFPortComponent portComponent = new WSCFPortComponentImpl(list[i]);
 48  13
             this.portComponent.put(portComponent.getPortComponentName(), portComponent);
 49   
         }
 50   
     }
 51   
 }
 52